 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --brand: #5fd092;
     --brand-dark: #3e9f6e;
     --brand-glow: rgba(95, 208, 146, 0.25);
     --bg-deep: #051a2c;
     --card-bg: rgba(8, 39, 70, 0.85);
     --ink: #f1f5f9;
     --muted: #b4c7e0;
     --line: rgba(55, 90, 117, 0.6);
     --radius: 28px;
     --radius-sm: 20px;
     --max-width: 1280px;
     --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
     --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
 }

 body {
     background-color: var(--bg-deep);
     font-family: 'Inter', system-ui, -apple-system, sans-serif;
     color: var(--ink);
     line-height: 1.5;
     scroll-behavior: smooth;
 }

 .site-shell {
     background-color: var(--bg-deep);
     overflow-x: hidden;
 }

 .container {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 24px;
 }

 h1,
 h2,
 h3 {
     letter-spacing: -0.02em;
     font-weight: 700;
 }

 a {
     text-decoration: none;
     color: inherit;
 }
 /* ========== PAGE CONTENT STYLES ========== */

 /* Hero Section with chat bubble decoration */
 .page-hero {
     padding-block: 78px 58px;
     position: relative;
     overflow: hidden;
 }

 .page-hero::before {
     content: '💬';
     position: absolute;
     bottom: 20px;
     right: 5%;
     font-size: 140px;
     opacity: 0.04;
     pointer-events: none;
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .breadcrumb {
     color: var(--muted);
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     font-size: 0.9rem;
     margin-bottom: 20px;
 }

 .breadcrumb a {
     color: var(--brand);
     font-weight: 600;
 }

 .eyebrow {
     background: rgba(95, 208, 146, 0.12);
     border: 1px solid rgba(95, 208, 146, 0.28);
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     gap: 9px;
     padding: 6px 14px;
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--brand);
     margin-bottom: 20px;
     backdrop-filter: blur(4px);
 }

 .eyebrow::before {
     content: "";
     width: 8px;
     height: 8px;
     background: var(--brand);
     border-radius: 999px;
     box-shadow: 0 0 0 4px rgba(95, 208, 146, 0.2);
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(95, 208, 146, 0.4);
     }

     70% {
         box-shadow: 0 0 0 6px rgba(95, 208, 146, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(95, 208, 146, 0);
     }
 }

 h1 {
     font-size: clamp(2.2rem, 4vw, 4rem);
     letter-spacing: -0.045em;
     line-height: 1.08;
     margin-bottom: 18px;
     background: linear-gradient(135deg, #fff, var(--brand));
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
 }

 .lead {
     color: var(--muted);
     font-size: clamp(1rem, 1.5vw, 1.2rem);
     max-width: 780px;
 }

 /* Page Sections */
 .page-section {
     padding-block: 40px 76px;
 }

 .page-grid {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 48px;
 }

 .section-kicker {
     color: var(--brand);
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.15em;
     margin-bottom: 12px;
     font-weight: 800;
 }

 .section-title {
     font-size: clamp(1.6rem, 2.8vw, 2.4rem);
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .section-copy {
     color: var(--muted);
     margin-bottom: 24px;
 }

 .content-card {
     background: var(--card-bg);
     backdrop-filter: blur(8px);
     border: 1px solid var(--line);
     border-radius: var(--radius);
     padding: 28px;
     margin-bottom: 40px;
     transition: var(--transition);
 }

 .content-card:hover {
     border-color: var(--brand);
     transform: translateY(-6px);
     box-shadow: var(--shadow);
 }

 .check-list {
     display: flex;
     flex-direction: column;
     gap: 14px;
     margin-top: 16px;
 }

 .check-list li {
     list-style: none;
     padding-left: 28px;
     position: relative;
     color: var(--muted);
 }

 .check-list li::before {
     content: "✓";
     background: var(--brand);
     border-radius: 999px;
     width: 18px;
     height: 18px;
     font-size: 0.7rem;
     display: inline-grid;
     place-items: center;
     color: #062033;
     position: absolute;
     left: 0;
     top: 2px;
     font-weight: bold;
 }

 .grid-2 {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 24px;
     margin-top: 20px;
 }

 .feature-card {
     background: rgba(8, 39, 70, 0.6);
     backdrop-filter: blur(4px);
     border-radius: 24px;
     padding: 24px 20px;
     border: 1px solid var(--line);
     transition: var(--transition);
 }

 .feature-card:hover {
     border-color: var(--brand);
     transform: translateY(-6px);
     background: rgba(8, 39, 70, 0.8);
 }

 .card-icon {
     font-size: 2rem;
     font-weight: 800;
     color: var(--brand);
     margin-bottom: 16px;
 }

 .card-title {
     font-size: 1.2rem;
     margin-bottom: 8px;
 }

 .card-text {
     color: var(--muted);
     font-size: 0.9rem;
 }

 .faq-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-top: 24px;
 }

 .faq-item {
     padding: 16px 0;
     border-bottom: 1px solid var(--line);
     transition: 0.2s;
 }

 .faq-item h3 {
     font-size: 1.1rem;
     margin-bottom: 8px;
     color: var(--brand);
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .faq-item h3::before {
     content: "💬";
     font-size: 1rem;
     opacity: 0.7;
 }

 .faq-item p {
     color: var(--muted);
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, margin 0.2s;
 }

 .faq-item.active p {
     max-height: 200px;
     margin-top: 12px;
 }

 /* Sidebar */
 .sidebar .content-card nav {
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-top: 20px;
 }

 .sidebar .content-card nav a {
     color: var(--muted);
     transition: 0.2s;
     border-left: 2px solid transparent;
     padding: 6px 12px;
     display: block;
 }

 .sidebar .content-card nav a:hover,
 .sidebar .content-card nav a[aria-current="page"] {
     color: var(--brand);
     border-left-color: var(--brand);
     background: rgba(95, 208, 146, 0.05);
     border-radius: 0 12px 12px 0;
 }

 /* CTA Section */
 .cta-band {
     background: radial-gradient(circle at 10% 30%, rgba(95, 208, 146, 0.12), transparent);
     border: 1px solid var(--line);
     border-radius: 48px;
     padding: 56px 40px;
     text-align: center;
     margin: 48px 0;
     transition: 0.2s;
 }

 .section-actions {
     display: flex;
     gap: 20px;
     justify-content: center;
     margin-top: 32px;
     flex-wrap: wrap;
 }

 /* Footer */
 .site-footer {
     background: #021220;
     border-top: 1px solid var(--line);
     padding: 48px 0 24px;
     margin-top: 40px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-links {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 12px;
 }

 .footer-links a,
 .footer-bottom {
     color: #9bb5d0;
     font-size: 0.85rem;
     transition: 0.2s;
 }

 .footer-links a:hover {
     color: var(--brand);
     transform: translateX(4px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 24px;
     border-top: 1px solid var(--line);
 }

 /* Animations */
 .reveal {
     margin-top: 30px;
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
 }

 .reveal.animated {
     opacity: 1;
     transform: translateY(0);
 }

 /* ========== RESPONSIVE STYLES ========== */
 @media (max-width: 980px) {
     .page-grid {
         grid-template-columns: 1fr;
     }

     .nav-links {
         display: none;
     }

     .menu-toggle {
         display: flex;
     }

     .grid-2 {
         grid-template-columns: 1fr;
     }

     /* Hide Book Free Audit button on small screens */
     .nav-actions .btn-primary {
         display: none;
     }
 }

 @media (max-width: 768px) {
     .nav-actions .btn-primary {
         display: none;
     }
 }

 @media (max-width: 640px) {
     .container {
         padding: 0 16px;
     }

     .cta-band {
         padding: 36px 20px;
     }

     .content-card {
         padding: 20px;
     }

     .page-hero::before {
         font-size: 80px;
     }

     /* Additional safety for button hide */
     .nav-actions .btn-primary {
         display: none;
     }
 }